Clover coverage report - bexee - 0.1
Coverage timestamp: Do Dez 16 2004 13:24:06 CET
file stats: LOC: 43   Methods: 2
NCLOC: 8   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
BPELDocumentException.java - 0% 0% 0%
coverage
 1   
 /*
 2   
  * $Id: BPELDocumentException.java,v 1.1 2004/12/15 14:18:10 patforna Exp $
 3   
  *
 4   
  * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
 5   
  * Berne University of Applied Sciences
 6   
  * School of Engineering and Information Technology
 7   
  * All rights reserved.
 8   
  */
 9   
 package bexee.model;
 10   
 
 11   
 /**
 12   
  * This exception class is used to signalize that a BPEL document is not valid.
 13   
  * 
 14   
  * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:10 $
 15   
  * @author Patric Fornasier
 16   
  * @author Pawel Kowalski
 17   
  */
 18   
 public class BPELDocumentException extends Exception {
 19   
 
 20   
     /**
 21   
      * Construct a <code>BPELDocumentException</code> with a message and the
 22   
      * cause specified.
 23   
      * 
 24   
      * @param String
 25   
      *            message
 26   
      * @param Throwable
 27   
      *            cause
 28   
      */
 29  0
     public BPELDocumentException(String message, Throwable cause) {
 30  0
         super(message, cause);
 31   
     }
 32   
 
 33   
     /**
 34   
      * Construct a <code>BPELDocumentException</code> with a cause specified.
 35   
      * 
 36   
      * @param Throwable
 37   
      *            cause
 38   
      */
 39  0
     public BPELDocumentException(Throwable cause) {
 40  0
         super(cause);
 41   
     }
 42   
 
 43   
 }